ALTER TABLE IF EXISTS public."Appointment"
    ADD COLUMN "OtherRemarks" character varying(250),
	ADD COLUMN "AuthorityMasterId" integer,
	ADD COLUMN "ReasonsId" integer,
	ADD COLUMN "Remarks" character varying(250),
	ADD CONSTRAINT "Appointment_AuthorityMasterId_fkey" FOREIGN KEY ("AuthorityMasterId")
    REFERENCES public."AuthorityMaster" ("AuthorityMasterId") MATCH SIMPLE
    ON UPDATE NO ACTION
    ON DELETE NO ACTION,
	ADD CONSTRAINT "Appointment_ReasonsId_fkey" FOREIGN KEY ("ReasonsId")
    REFERENCES public."Reasons" ("ReasonsId") MATCH SIMPLE
    ON UPDATE NO ACTION
    ON DELETE NO ACTION;